Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

R2DBC support @riba2101 #292

Merged
merged 19 commits into from
Feb 26, 2024
Merged

R2DBC support @riba2101 #292

merged 19 commits into from
Feb 26, 2024

Conversation

velo
Copy link
Member

@velo velo commented Feb 7, 2024

all credit to @riba2101 that did the original work

Fixes querydsl/querydsl#2468

Ognjen Ribicic and others added 11 commits June 8, 2020 22:15
private final List<Type<?, ?>> customTypes = new ArrayList<>();

protected boolean requiresQuotes(final String identifier, final boolean precededByDot) {
if (identifier.matches(".*[^A-z0-9_].*")) {

Check warning

Code scanning / CodeQL

Overly permissive regular expression range Medium

Suspicious character range that is equivalent to [A-Z[]^_`a-z].
protected boolean requiresQuotes(final String identifier, final boolean precededByDot) {
if (identifier.matches(".*[^A-z0-9_].*")) {
return true;
} else if (identifier.matches("^[^A-z_].*")) {

Check warning

Code scanning / CodeQL

Overly permissive regular expression range Medium

Suspicious character range that is equivalent to [A-Z[]^_`a-z].
@velo velo merged commit 4e7ebbd into master Feb 26, 2024
2 checks passed
@velo velo deleted the r2dbc branch February 26, 2024 03:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

R2DBC support
1 participant